To split a string to an array in awk we use the function split(): awk '{split($0, array, :)}' # -/ -___/ -_/ # | | | # string | delimiter # | # array to ...
I want to split a string in awk and treat each component seperatley. I know i can use: Code: split (hi all, a, ) to put each delimited component into ...